home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / i686-linux-thread-multi / Encode / EBCDIC.pm < prev    next >
Text File  |  2006-04-25  |  832b  |  44 lines

  1. package Encode::EBCDIC;
  2. use Encode;
  3. our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
  4.  
  5. use XSLoader;
  6. XSLoader::load(__PACKAGE__,$VERSION);
  7.  
  8. 1;
  9. __END__
  10.  
  11. =head1 NAME
  12.  
  13. Encode::EBCDIC - EBCDIC Encodings
  14.  
  15. =head1 SYNOPSIS
  16.  
  17.     use Encode qw/encode decode/; 
  18.     $posix_bc  = encode("posix-bc", $utf8); # loads Encode::EBCDIC implicitly
  19.     $utf8 = decode("", $posix_bc);          # ditto
  20.  
  21. =head1 ABSTRACT
  22.  
  23. This module implements various EBCDIC-Based encodings.  Encodings
  24. supported are as follows.   
  25.  
  26.   Canonical   Alias        Description
  27.   --------------------------------------------------------------------
  28.   cp37  
  29.   cp500  
  30.   cp875  
  31.   cp1026  
  32.   cp1047  
  33.   posix-bc
  34.  
  35. =head1 DESCRIPTION
  36.  
  37. To find how to use this module in detail, see L<Encode>.
  38.  
  39. =head1 SEE ALSO
  40.  
  41. L<Encode>, L<perlebcdic>
  42.  
  43. =cut
  44.